wayland: Seal up a non-declared public member
authorJasper St. Pierre <jstpierre@mecheye.net>
Thu, 27 Feb 2014 22:32:53 +0000 (17:32 -0500)
committerJasper St. Pierre <jstpierre@mecheye.net>
Thu, 27 Feb 2014 22:33:09 +0000 (17:33 -0500)
gdk/wayland/gdkwindow-wayland.c

index 0f0d581760358a8fa785ab59eb0ce9d42d8be054..462f8db33f23b31ffb9bb6e3de2a3b9b0f4d3bc1 100644 (file)
@@ -1364,10 +1364,10 @@ gdk_window_wayland_get_geometry (GdkWindow *window,
     }
 }
 
-void
-_gdk_wayland_window_offset (GdkWindow *window,
-                            gint      *x_out,
-                            gint      *y_out)
+static void
+gdk_wayland_window_offset (GdkWindow *window,
+                           gint      *x_out,
+                           gint      *y_out)
 {
   GdkWindowImplWayland *impl, *parent_impl;
   GdkWindow *parent_window;
@@ -1399,7 +1399,7 @@ gdk_window_wayland_get_root_coords (GdkWindow *window,
 {
   gint x_offset, y_offset;
 
-  _gdk_wayland_window_offset (window, &x_offset, &y_offset);
+  gdk_wayland_window_offset (window, &x_offset, &y_offset);
 
   if (root_x)
     *root_x = x_offset + x;